type conversion - translation to russian
Diclib.com
ChatGPT AI Dictionary
Enter a word or phrase in any language 👆
Language:

Translation and analysis of words by ChatGPT artificial intelligence

On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:

  • how the word is used
  • frequency of use
  • it is used more often in oral or written speech
  • word translation options
  • usage examples (several phrases with translation)
  • etymology

type conversion - translation to russian

CHANGING AN EXPRESSION FROM ONE DATA TYPE TO ANOTHER
Explicit type conversion; Typecasting (programming); Typecast (programming); Cast (computer science); Type conversions; Implicit coercion; Cast (computer programming); Implicit type conversion; Type coercion; Const cast; Implicit conversion; Upcasting; Type promotion; Type Conversion; Typecasting (hacking); Typecasting (computing); Type casting (computer programming); Typecasting (computer programming); Typecasting (computer science); Type casting (computer science); Type casting (computing); Cast (computing); Casting (computing); Casting (computer programming); Casting (computer science); Integer promotion; Type juggling; Implicit type casting; Explicit type casting

type conversion         

общая лексика

преобразование типов

выполняемое в программе явное (заданное программистом) или неявное (добавленное компилятором) преобразование значения одного типа в соответствующее значение другого типа

data conversion         
CONVERSION OF DIGITAL DATA BETWEEN FORMATS
File conversion; File converter; Document conversion; Online conversion; File format converter; Document converter; File format conversion; Format conversion; File type conversion; Pivotal conversion; Conversion between file formats

общая лексика

преобразование данных

процесс изменения формы представления данных

file conversion         
CONVERSION OF DIGITAL DATA BETWEEN FORMATS
File conversion; File converter; Document conversion; Online conversion; File format converter; Document converter; File format conversion; Format conversion; File type conversion; Pivotal conversion; Conversion between file formats

общая лексика

конвертирование файла

преобразование содержимого файла из одного формата хранения данных в другой

Смотрите также

file format

Definition

implicit type conversion
<programming> (Or "coercion") The abilty of some compilers to automatically insert type conversion functions where an expression of one type is used in a context where another type is expected. A common example is coercion of integers to reals so that an expression like sin(1) is compiled as sin(integerToReal(1)) where sin is of type Real -> Real. A coercion is usually performed automatically by the compiler whereas a cast is an explicit type conversion inserted by the programmer. See also subtype. (1997-07-28)

Wikipedia

Type conversion

In computer science, type conversion, type casting, type coercion, and type juggling are different ways of changing an expression from one data type to another. An example would be the conversion of an integer value into a floating point value or its textual representation as a string, and vice versa. Type conversions can take advantage of certain features of type hierarchies or data representations. Two important aspects of a type conversion are whether it happens implicitly (automatically) or explicitly, and whether the underlying data representation is converted from one representation into another, or a given representation is merely reinterpreted as the representation of another data type. In general, both primitive and compound data types can be converted.

Each programming language has its own rules on how types can be converted. Languages with strong typing typically do little implicit conversion and discourage the reinterpretation of representations, while languages with weak typing perform many implicit conversions between data types. Weak typing language often allow forcing the compiler to arbitrarily interpret a data item as having different representations—this can be a non-obvious programming error, or a technical method to directly deal with underlying hardware.

In most languages, the word coercion is used to denote an implicit conversion, either during compilation or during run time. For example, in an expression mixing integer and floating point numbers (like 5 + 0.1), the compiler will automatically convert integer representation into floating point representation so fractions are not lost. Explicit type conversions are either indicated by writing additional code (e.g. adding type identifiers or calling built-in routines) or by coding conversion routines for the compiler to use when it otherwise would halt with a type mismatch.

In most ALGOL-like languages, such as Pascal, Modula-2, Ada and Delphi, conversion and casting are distinctly different concepts. In these languages, conversion refers to either implicitly or explicitly changing a value from one data type storage format to another, e.g. a 16-bit integer to a 32-bit integer. The storage needs may change as a result of the conversion, including a possible loss of precision or truncation. The word cast, on the other hand, refers to explicitly changing the interpretation of the bit pattern representing a value from one type to another. For example, 32 contiguous bits may be treated as an array of 32 booleans, a 4-byte string, an unsigned 32-bit integer or an IEEE single precision floating point value. Because the stored bits are never changed, the programmer must know low level details such as representation format, byte order, and alignment needs, to meaningfully cast.

In the C family of languages and ALGOL 68, the word cast typically refers to an explicit type conversion (as opposed to an implicit conversion), causing some ambiguity about whether this is a re-interpretation of a bit-pattern or a real data representation conversion. More important is the multitude of ways and rules that apply to what data type (or class) is located by a pointer and how a pointer may be adjusted by the compiler in cases like object (class) inheritance.

What is the Russian for type conversion? Translation of &#39type conversion&#39 to Russian